summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-03-22 09:36:00 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:45 +0200
commit74653f1e803fc4c75ab1a4893893414d83fb645c (patch)
treebc98ee3ed9f64ac603719e78d93b17e51edca2ec
parentandroid: Suppress lint in InsetsHelper (diff)
downloadyuzu-74653f1e803fc4c75ab1a4893893414d83fb645c.tar
yuzu-74653f1e803fc4c75ab1a4893893414d83fb645c.tar.gz
yuzu-74653f1e803fc4c75ab1a4893893414d83fb645c.tar.bz2
yuzu-74653f1e803fc4c75ab1a4893893414d83fb645c.tar.lz
yuzu-74653f1e803fc4c75ab1a4893893414d83fb645c.tar.xz
yuzu-74653f1e803fc4c75ab1a4893893414d83fb645c.tar.zst
yuzu-74653f1e803fc4c75ab1a4893893414d83fb645c.zip
-rw-r--r--src/android/app/src/main/AndroidManifest.xml4
-rw-r--r--src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/StartupHandler.kt2
-rw-r--r--src/android/app/src/main/res/drawable/ic_launcher.xml (renamed from src/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml)0
3 files changed, 3 insertions, 3 deletions
diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml
index 4164bd96f..79fb902ad 100644
--- a/src/android/app/src/main/AndroidManifest.xml
+++ b/src/android/app/src/main/AndroidManifest.xml
@@ -18,11 +18,11 @@
<application
android:name="org.yuzu.yuzu_emu.YuzuApplication"
android:label="@string/app_name"
- android:icon="@mipmap/ic_launcher"
+ android:icon="@drawable/ic_launcher"
android:allowBackup="false"
android:supportsRtl="true"
android:isGame="true"
- android:banner="@mipmap/ic_launcher"
+ android:banner="@drawable/ic_launcher"
android:extractNativeLibs="true"
android:fullBackupContent="@xml/data_extraction_rules"
android:dataExtractionRules="@xml/data_extraction_rules_api_31">
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/StartupHandler.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/StartupHandler.kt
index 9deff6870..e2e56eb06 100644
--- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/StartupHandler.kt
+++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/StartupHandler.kt
@@ -35,7 +35,7 @@ object StartupHandler {
val alert = MaterialAlertDialogBuilder(parent)
.setMessage(Html.fromHtml(parent.resources.getString(R.string.app_disclaimer)))
.setTitle(R.string.app_name)
- .setIcon(R.mipmap.ic_launcher)
+ .setIcon(R.drawable.ic_launcher)
.setPositiveButton(android.R.string.ok, null)
.setOnDismissListener {
handleStartupPromptDismiss(parent)
diff --git a/src/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/src/android/app/src/main/res/drawable/ic_launcher.xml
index c060cd86c..c060cd86c 100644
--- a/src/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
+++ b/src/android/app/src/main/res/drawable/ic_launcher.xml